home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _62779FDFDC804AABAB5BACFF7053197E < prev    next >
Encoding:
Text File  |  2006-08-04  |  1.7 KB  |  56 lines

  1. from JascApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': 'Jasc Software, Inc.',
  6.         'Copyright': 'Copyright (c) 2004 Jasc Software, Inc.  All rights reserved.',
  7.         'Description': '',
  8.         'Host': 'Paint Shop Pro 9',
  9.         'Host Version': '9.00'
  10.         }
  11.  
  12. def MIPTemplate_Print():
  13.     return {
  14.         'PrintingOptions': {
  15.             'PrinterName': None, 
  16.             'Orientation': 0, 
  17.             'NumCopies': 1, 
  18.             'Negative': False, 
  19.             'Background': False, 
  20.             'BackgroundColor': (255,255,255), 
  21.             'OutputOption': 0, 
  22.             'CornerCropmarks': False, 
  23.             'CenterCropmarks': False, 
  24.             'RegistrationMarks': False, 
  25.             'ImageLabels': False, 
  26.             'Header': False, 
  27.             'HeaderText': '', 
  28.             'Footer': False, 
  29.             'FooterText': '', 
  30.             'CMYKLabels': False, 
  31.             'PrintQuality': 200, 
  32.             'PaperSize': 1
  33.             }, 
  34.         'MIPCmdFile': '', 
  35.         'TemplateMetric': False, 
  36.         'PageDimensions': (8.5,11), 
  37.         'TemplateCategory': 'Avery', 
  38.         'TemplateDescription': 'CD/DVD Jewel case inlegvellen (lade)', 
  39.         'Template': [{
  40.             'CellPosition': (1.63,0.6925), 
  41.             'CellSize': (5.24,4.49), 
  42.             'ImagePlacement': 2, 
  43.             'EllipticalCell': False, 
  44.             'ImagePath': '', 
  45.             'RotationAngle': 0, 
  46.             'ImagePosition': (0,0), 
  47.             'ImageSize': (0,0)
  48.             }], 
  49.         'TextFieldList': []
  50.         }
  51.  
  52. def Do(Environment):
  53.     # Print_LOCALIZED
  54.     App.Do( Environment, 'Print',         MIPTemplate_Print())
  55.  
  56.